05. Exercise: Create the AboutMe Project
ANDK L2 09 Create Project HS-SC
NOTE We recommend you update to Android Studio Version 3.3 . You can download it from the Beta Channel in Android Studio. Select the Preferences menu (or Settings in Windows) and search for Updates. There you can select "Beta Channel" and then click on "Check Now" to locate and download the new version.
Now it’s your turn to complete this exercise.
Every app in Android Studio starts with creating a project.
Creating the About Me App
The exercises for these lessons were done with Android Studio Version 3.3.
1. Welcome to Android Studio
First, open Android Studio. You should see this window. Go ahead and click "Start a new Android Studio Project".
2. Choose your Project
On the next page you will be presented with several device platform tabs, each with different templates for adding an Activity.
From the "Phone and Tablet" tab choose "Empty Activity," and click "Next" again.
3. Configure Android Project
For this app use this configuration:
Name: Dice Roller
Package: com.example.android.aboutme
Project location: < Your choice of where to save this project on your computer >
Language: Kotlin
Minimum API: leave the default values
We've decided to build this project for "Phone and Tablet" with Minimum SDK of API 19. As of the time we wrote this course, that gave us 95.3% coverage of devices and allowed us to have support for many modern features.
Remember that you can use the "Help me choose" link to see the Android Platform/API Version distribution to see the percentage of active devices running with each API.
Finally, click "Finish" to create your About Me project.
Depending on your computer and network speed, it might take a minute to set up and build your project. This might be a good time to do a stretch, get some tea, or start watching the next video.
Android Developer Documentation:
Task Description:
It’s your turn to create an AboutMe project! Check the steps below as you implement them to complete this exercise.
Task Feedback:
Great! You now have a project to work with for creating a layout.